Skip to content

fix: 버튼 라우팅 경로 수정#89

Merged
Jieunsse merged 1 commit into
mainfrom
fix/kanban-list
Feb 25, 2026
Merged

fix: 버튼 라우팅 경로 수정#89
Jieunsse merged 1 commit into
mainfrom
fix/kanban-list

Conversation

@Jieunsse

Copy link
Copy Markdown
Contributor

Summary

  • 이 PR에서 변경한 내용 한 줄 요약

Issue

  • Closes #

Scope

  • 포함

    • 변경한 내용
  • 특이사항

@Jieunsse Jieunsse merged commit 5b8d680 into main Feb 25, 2026
1 check passed
@gemini-code-assist

Copy link
Copy Markdown
Contributor

Summary of Changes

Hello @Jieunsse, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

이 PR은 팀 대시보드 내 '리스트 보기' 버튼의 라우팅 경로를 수정하여 사용자가 올바른 작업 목록 페이지로 이동할 수 있도록 합니다. 기존의 잘못된 경로를 새로운 경로로 업데이트함으로써, 사용자 경험을 개선하고 기능의 정확성을 확보했습니다.

Highlights

  • 버튼 라우팅 경로 수정: 팀 대시보드에서 '리스트 보기' 버튼의 라우팅 경로를 /list?groupId=${teamid}에서 /${teamid}/tasklist로 변경하여 올바른 페이지로 이동하도록 수정했습니다.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Changelog
  • src/app/(root)/[teamid]/_domain/components/Team/TeamDashboard.tsx
    • 팀 대시보드에서 '리스트 보기' 버튼의 Link 컴포넌트 href 속성을 /list?groupId=${teamid}에서 /${teamid}/tasklist로 변경했습니다.
Activity
  • 이 PR에 대한 추가적인 활동은 아직 기록되지 않았습니다.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

이 PR은 팀 대시보드의 '리스트 보기' 버튼의 라우팅 경로를 수정합니다. 코드 변경 자체는 올바르지만, 하드코딩된 URL 경로를 중앙에서 관리하여 유지보수성을 높이는 것을 제안합니다. 관련하여 TeamDashboard.tsx 파일에 의견을 남겼습니다.


<aside className={styles.rightPanel}>
<Link href={`/list?groupId=${teamid}`} className={styles.listLink}>
<Link href={`/${teamid}/tasklist`} className={styles.listLink}>

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

라우트 경로를 문자열로 직접 작성하는 대신, 경로를 관리하는 별도의 파일을 만들어 사용하는 것을 고려해 보세요. 이렇게 하면 경로가 변경될 때 여러 파일을 수정할 필요 없이 한 곳에서만 관리할 수 있어 유지보수성이 향상됩니다.

예를 들어, paths.ts와 같은 파일을 만들 수 있습니다:

// src/constants/paths.ts
export const PATHS = {
  teamTaskList: (teamId: string | number) => `/${teamId}/tasklist`,
  teamDashboard: (teamId: string | number) => `/${teamId}`,
  addTeam: '/addteam',
};

그리고 다음과 같이 사용할 수 있습니다:

// 사용 예시
import { PATHS } from '@/constants/paths';

// ...
<Link href={PATHS.teamTaskList(teamid)} ... >

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant